home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 1 / CU Amiga Magazine CD-ROM Special Edition (1995)(EMAP Images)(GB)[Issue 1995-11].iso / Aminet / misc / emu / BBcpuclk1_0.lha / BBcpuclk1.0 / BBcpuclk.ASM next >
Assembly Source File  |  1995-05-19  |  426b  |  22 lines

  1. ;
  2. ; BBcpuclk.asm
  3. ;
  4. ; (C) Copyright 1995 Remi Lenoir
  5. ;
  6. cseg    segment
  7.     assume     cs:cseg,ds:cseg
  8.     org    100h
  9. start:    mov    al,7
  10.     out    0ech,al
  11.     in    al,0edh        ;read CLKTCL register
  12.     and    al,9fh        ;set NON TURBO divider ratio to 1
  13.     out    0edh,al        ;write CLKCTL register
  14.     mov    al,0
  15.     out    0f4h,al        ;switch to NON TURBO mode
  16. exit:    mov    al,0
  17.     mov    ah,04ch
  18.     int    21h
  19.     db    'BBcpuclk (C) Copyright 1995 Remi Lenoir'
  20. cseg    ends
  21.     end start
  22.